|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
FilterI.java | - | - | - | - |
|
1 |
package net.sf.flock; |
|
2 |
|
|
3 |
import java.io.Serializable; |
|
4 |
import java.util.List; |
|
5 |
|
|
6 |
/** |
|
7 |
* |
|
8 |
* @version $Revision$ |
|
9 |
* @author $Author$ |
|
10 |
*/ |
|
11 |
public interface FilterI extends Serializable { |
|
12 |
|
|
13 |
public List filter(List items); |
|
14 |
|
|
15 |
} |
|
16 |
|
|